home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr29 / joki20.zip / README.BAT < prev   
DOS Batch File  |  1993-04-13  |  668b  |  23 lines

  1. @echo off
  2. if not exist joki.doc goto exit(1)
  3. if not exist c:\dos\print.exe goto justview
  4. @echo To print JOKI.DOC, get your printer on-line and type:
  5. @echo C:\DOS\PRINT JOKI.DOC at the DOS prompt.
  6. @echo -----------------------------------------------------
  7. :justview
  8. @echo Press Ctrl-Break if you want to quit README
  9. if not exist c:\dos\more.com goto nomore
  10. @echo While reading JOKI.DOC, press any key for the next page;
  11. pause
  12. c:\dos\more<joki.doc
  13. goto exit(0)
  14. :nomore
  15. @echo Press Ctrl-S to pause scrolling text. when you're ready for more;
  16. pause
  17. type joki.doc
  18. goto exit(0)
  19. :exit(1)
  20. @echo joki.doc not found in current directory
  21. :exit(0)
  22. @echo on
  23.